home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / php_log.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  94 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10535);
  10.  script_bugtraq_id(1786);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CVE-2000-0967");
  13.  name["english"] = "php log";
  14.  name["francais"] = "log php";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. A version of php which is older than 3.0.17
  19. or than 4.0.3 is running on this host.
  20.  
  21.  
  22. If the option 'log_errors' is set to 'On' in php.ini,
  23. then an attacker may execute arbitrary code on this host.
  24.  
  25.  
  26. Solution : make sure that 'log_errors' is set to 'Off' in your php.ini,
  27.            or install the latest version of PHP :
  28.        http://www.php.net/do_download.php?download_file=php-4.0.3.tar.gz
  29.        or
  30.        http://www.php.net/distributions/php-3.0.17.tar.gz
  31.  
  32. Risk factor : High";
  33.  
  34.  
  35.  desc["francais"] = "
  36. Une version de php plus vieille que la 3.0.17 ou que la 4.0.3
  37. tourne sur ce serveur.
  38.  
  39. Si l'option 'log_errors' est mise α 'On' dans php.ini, 
  40. alors un pirate est en mesure de faire executer du coder
  41. arbitraire α ce serveur.
  42.  
  43. Solution : assurez-vous que l'option 'log_errors' est mise α 'Off' dans
  44.            votre php.ini, ou bien installez les derniΦres versions
  45.        de PHP :
  46.        http://www.php.net/do_download.php?download_file=php-4.0.3.tar.gz
  47.        or
  48.        http://www.php.net/distributions/php-3.0.17.tar.gz
  49.        
  50. Facteur de risque : ElevΘ";
  51.  
  52.  
  53.  script_description(english:desc["english"], francais:desc["francais"]);
  54.  
  55.  summary["english"] = "Checks for version of PHP";
  56.  summary["francais"] = "VΘrifie la version de PHP";
  57.  
  58.  script_summary(english:summary["english"], francais:summary["francais"]);
  59.  
  60.  script_category(ACT_GATHER_INFO);
  61.  
  62.  
  63.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  64.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  65.  family["english"] = "CGI abuses";
  66.  family["francais"] = "Abus de CGI";
  67.  script_family(english:family["english"], francais:family["francais"]);
  68.  script_dependencie("find_service.nes", "http_version.nasl");
  69.  script_require_ports("Services/www", 80);
  70.  exit(0);
  71. }
  72.  
  73. #
  74. # The script code starts here
  75. #
  76.  
  77. include("http_func.inc");
  78.  
  79. port = get_http_port(default:80);
  80.  
  81. if(get_port_state(port))
  82. {
  83.  banner = get_http_banner(port:port);
  84.  if(!banner)exit(0);
  85.  
  86.  serv = egrep(string:banner, pattern:"^Server:.*$");
  87.  if(ereg(pattern:"(.*PHP/3\.0\.((1[0-6])|([0-9]([^0-9]|$))))|(.*PHP/4\.0\.[0-2]([^0-9]|$))",
  88.           string:serv))
  89.  {
  90.    security_hole(port);
  91.  }
  92. }
  93.  
  94.